home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / gts / feature / no-tears.pd / no-tears.pd
Text File  |  1995-03-18  |  5KB  |  91 lines

  1. ---------------------------------
  2. RUNNING PD SOFTWARE WITHOUT TEARS
  3. ---------------------------------
  4.  
  5. (EDITOR'S NOTE:
  6. This June 1987 issue article gave some hints on how to get PD programs to
  7. run. The earlier Fish disks, in particular, may have no icons to click and
  8. require knowing how to reach the CLI and figuring out what to type there,
  9. either to run a program or to find out what is on the disk. Later Fish
  10. disks do have icons, and the Amicus series also has icons throughout for
  11. easier operation. Documentation on the disks has steadily improved.)
  12.  
  13. FIGURING OUT PD
  14.      Ordering a "public domain" disk can deliver frustration. Some such
  15. disks don't include much in the way of documentation. Here are some hints on
  16. how to run such software.
  17.      First, and especially if you have a single drive, find out the name of
  18. the disk, so you can address it by disk name, rather than drive name. This
  19. is mandatory on one-drive systems that run programs from the CLI. When you
  20. put a disk in the drive, its disk icon appears on the Workbench screen. The
  21. title below the icon is its name.
  22.      Second, open the disk's main window to see if you got lucky and
  23. obtained a disk whose programs run from icons. Yes? Then double-click them
  24. to see what happens. No? Go to the CLI.
  25.      Three, if you're a beginner, going to the CLI is a mysterious bit of
  26. advice. The CLI (command line interface or interpreter) is where AmigaDOS
  27. commands can be entered and run. Open the Workbench window, double-click the
  28. Preferences icon, and therein click the CLI ON, then click the word SAVE at
  29. the right of the screen. Then reboot the system. When Workbench is opening,
  30. just after the copyright notice appears, hold down the CTRL and D keys
  31. together, and the system breaks to the CLI, where you will see a prompt:
  32. 1>
  33.      It is here you can enter AmigaDOS commands that may or may not make the
  34. PD disk program work.
  35.      Four, let's say you have a disk named PD:. If you have two drives, put
  36. Workbench in one, PD: in the other, type
  37. LIST PD:     (and press Return)
  38. If you have one drive, put Workbench in it, type
  39. LIST PD:     (and press Return)
  40. and then respond to the requester box by putting PD: in the drive. AmigaDOS
  41. will respond with a list of files and directories on the disk. If you have a
  42. printer you can get a listing of these on paper with the command
  43. LIST > PRT: PD:
  44.      If you can find any README files or files ending with the characters
  45. .doc, .txt or anything else suggestive of a text file, try to read them by
  46. typing
  47. TYPE PD:filename      (where "filename" stands for the name of file)
  48. Holding down the right mouse button stops the scroll until the button is
  49. released. You can also see ASCII files by typing:
  50. ED PD:filename  (and press Return)
  51. To use ED you need a bit of knowledge about cursor movements. Use the down
  52. arrow key to read down it. Exit it by pressing the ESC key, the letter Q and
  53. Return. You may also scroll up and down entire screens with CTRL U and
  54. CTRL D.
  55.      The LISTed files may show the characters "dir" as part of their
  56. identification. This means programs or text files, usually associated with a
  57. single topic, are grouped within a directory, which is equivalent to a
  58. drawer on the Workbench screen. To list contents of a directory named "tom,"
  59. type
  60. LIST PD:tom    (and press return)
  61. Herein you may find more documentation files (READMEs and the like) and you
  62. may find the actual program you're seeking. You may even find directories
  63. within directories.
  64.      To read a file named "help" within the "tom" directory on a disk named
  65. "PD:", you'd have to type
  66. TYPE PD:tom/help       (and press Return)
  67.      When you locate the file you may find it runs just by typing
  68. RUN PD:filename   (and pressing Return)
  69. It might run by simply typing its name:
  70. PD:filename
  71. If it's buried within a series of drawers, it can be a frustrating
  72. experience to get it just right, but AmigaDOS insists on precision in such
  73. matters. The key is to put a colon after the disk name and separate each
  74. name of the pathway with a slash. Example: You've found a program called
  75. "the_last_program_you'll_ever_need" within a directory called
  76. "importantprograms," which is itself part of a disk labeled "DE_PROFUNDIS:".
  77. To see what is involved here, you would type:
  78. run de_profundis:importantprograms/the_last_program_you'll_ever_need
  79.      It can get confusing.
  80.      Those lines between the words just serve to integrate the names into a
  81. single, unbroken filename the Amiga recognizes. If someone has named a
  82. program with two or more sets of characters, as in READ ME,
  83. then you must enclose the entire name within quotes, as in
  84. LIST "PD:READ ME"
  85.      Beyond that, experiment. The field of PD is marked by different styles,
  86. slopware, lack of documentation, and presumption. It is presumed you know
  87. what you're doing.
  88.      We at JUMPDISK hope that now you do.
  89.  
  90. END OF TEXT
  91.